home *** CD-ROM | disk | FTP | other *** search
/ ftp.qualcomm.com / 2014.06.ftp.qualcomm.com.tar / ftp.qualcomm.com / eudora / developers / emsapi / carbon_emsapi.sit.hqx / Macintosh API Support / rfc822.h < prev    next >
Text File  |  2001-03-08  |  787b  |  23 lines

  1. /* =========================================================================
  2.  
  3.     Functions for very basic RFC-822 header manipulation
  4.              
  5.     Filename:            rfc822.h
  6.     Last Edited:        March 7, 1997
  7.     Authors:            Laurence Lundblade, Myra Callen, Bob Fronabarger
  8.     Copyright:            1995, 1996 QUALCOMM Inc.
  9.     Technical support:    <emsapi-info@qualcomm.com>
  10.  
  11.     Some of this code is from the c-client and is 
  12.         Copyright University of Washington
  13. */
  14.  
  15.  
  16. char            *RFC822_ExtractToken(char **cpp);
  17. char            *RFC822_SkipWS(char *cp);
  18. char            *RFC822_SkipWord(char *cp);
  19. unsigned short    RFC822_QuotedStrLen(StringPtr theStr);
  20. char            *RFC822_QuoteStrCpy(char *dst, StringPtr theStr);
  21. char            *RFC822_ExtractHeader(const char *pFullHeader, const char *pLinePrefix);
  22.  
  23. extern const char    *hSpecials, *wSpecials, *ptSpecials;